home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / M2011PWA.ZIP / PASSWORD.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-04-21  |  932b  |  84 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   TSTRING003(1)
  22.     String   STRING004
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     TSTRING003(1) = PPEPath() + "MATRIX.TMP"
  27.     RdUNet PcbNode()
  28.     WrUNet PcbNode(), "U", UN_Name(), UN_City(), "User is Logging in using Matrix 2000!", ""
  29.     FOpen 1, TSTRING003(1), 0, 0
  30.     FGet 1, STRING001
  31.     FGet 1, STRING002
  32.     FGet 1, STRING004
  33.     FClose 1
  34.     STRING004 = Upper(STRING004)
  35.     Delete TSTRING003(1)
  36.     AnsiPos STRING002, STRING001
  37.     KbdStuff STRING004 + Chr(13)
  38.     End
  39.  
  40. ;------------------------------------------------------------------------------
  41. ;
  42. ; Usage report (before postprocessing)
  43. ;
  44. ; ■ Statements used :
  45. ;
  46. ;    1       End
  47. ;    2       Let 
  48. ;    1       FOpen 
  49. ;    1       FClose 
  50. ;    3       FGet 
  51. ;    1       Delete 
  52. ;    1       KbdStuff 
  53. ;    1       RdUNet 
  54. ;    1       WrUNet 
  55. ;    1       AnsiPos 
  56. ;
  57. ;
  58. ; ■ Functions used :
  59. ;
  60. ;    2       +
  61. ;    1       Upper()
  62. ;    1       Chr()
  63. ;    1       PPEPath()
  64. ;    2       PcbNode()
  65. ;    1       UN_Name()
  66. ;    1       UN_City()
  67. ;
  68. ;------------------------------------------------------------------------------
  69. ;
  70. ; Analysis flags : No flag
  71. ;
  72. ;------------------------------------------------------------------------------
  73. ;
  74. ; Postprocessing report
  75. ;
  76. ;    0       For/Next
  77. ;    0       While/EndWhile
  78. ;    0       If/Then or If/Then/Else
  79. ;    0       Select Case
  80. ;
  81. ;------------------------------------------------------------------------------
  82. ;                 AEGiS Corp - Break the routines, code against the machines!
  83. ;------------------------------------------------------------------------------
  84.